home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / Unreal Tou209266102001.psc / frmAbout.frm (.txt) next >
Encoding:
Visual Basic Form  |  2001-05-21  |  2.4 KB  |  77 lines

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    BackColor       =   &H00000000&
  4.    BorderStyle     =   4  'Fixed ToolWindow
  5.    Caption         =   "UTServer Query Tool v1.0"
  6.    ClientHeight    =   5700
  7.    ClientLeft      =   45
  8.    ClientTop       =   285
  9.    ClientWidth     =   7485
  10.    KeyPreview      =   -1  'True
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   5700
  15.    ScaleWidth      =   7485
  16.    ShowInTaskbar   =   0   'False
  17.    StartUpPosition =   1  'CenterOwner
  18.    Begin VB.PictureBox Picture1 
  19.       Height          =   5715
  20.       Left            =   0
  21.       Picture         =   "frmAbout.frx":0000
  22.       ScaleHeight     =   5655
  23.       ScaleWidth      =   7455
  24.       TabIndex        =   0
  25.       Top             =   0
  26.       Width           =   7515
  27.       Begin VB.Label Label1 
  28.          AutoSize        =   -1  'True
  29.          BackStyle       =   0  'Transparent
  30.          Caption         =   "theok21@internet.gr"
  31.          ForeColor       =   &H000000FF&
  32.          Height          =   195
  33.          Index           =   2
  34.          Left            =   1620
  35.          TabIndex        =   3
  36.          Top             =   2670
  37.          Width           =   1455
  38.       End
  39.       Begin VB.Label Label1 
  40.          BackStyle       =   0  'Transparent
  41.          Caption         =   "20/05/2001"
  42.          ForeColor       =   &H00FFFFFF&
  43.          Height          =   255
  44.          Index           =   1
  45.          Left            =   150
  46.          TabIndex        =   2
  47.          Top             =   5250
  48.          Width           =   2655
  49.       End
  50.       Begin VB.Label Label1 
  51.          BackStyle       =   0  'Transparent
  52.          Caption         =   "Programmed in MS Visual Basic 6.0"
  53.          ForeColor       =   &H00FFFFFF&
  54.          Height          =   255
  55.          Index           =   0
  56.          Left            =   150
  57.          TabIndex        =   1
  58.          Top             =   5010
  59.          Width           =   2655
  60.       End
  61.    End
  62. Attribute VB_Name = "frmAbout"
  63. Attribute VB_GlobalNameSpace = False
  64. Attribute VB_Creatable = False
  65. Attribute VB_PredeclaredId = True
  66. Attribute VB_Exposed = False
  67. Option Explicit
  68. Private Sub Form_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
  69.    Unload Me
  70. End Sub
  71. Private Sub Label1_Click(Index As Integer)
  72.     Unload Me
  73. End Sub
  74. Private Sub Picture1_Click()
  75.    Unload Me
  76. End Sub
  77.